home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
Archives
/
GNU
/
gawk_2_15_5.lha
/
gawk-2.15.5
/
awk.hch
< prev
next >
Wrap
Text File
|
1995-01-20
|
895b
|
61 lines
Changes for AWK.H by Andreas Scherer, January 20, 1995.
@x l.35
#include <varargs.h>
@y
#include <stdarg.h>
@z
@x l.117
#include <malloc.h>
#else
extern char *alloca();
@y
#include <malloc.h>
#else
extern char *alloca(unsigned int);
@z
@x l.344
struct exp_node *(*pptr) ();
@y
struct exp_node *(*pptr) (struct exp_node *);
@z
@x l.368
char idx;
@y
signed char idx;
@z
@x l.472
typedef void (*Func_ptr)();
@y
typedef void (*Func_ptr)(void);
@z
@x l.531
extern char *OFS;
@y
#ifdef __SASC /* So ein Schwachsinn */
#undef OFS
#endif
extern char *OFS;
@z
@x l.728
extern void err P((const char *s, const char *emsg, va_list argp));
@y
extern void err P((const char *s, const char *emsg, ...));
@z
@x l.734
extern void msg ();
extern void warning ();
extern void fatal ();
@y
extern void msg (char *, ...);
extern void warning (char *, ...);
extern void fatal (char *, ...);
@z